I already know about this open issue HERE
I get that error when the test tries to go to an item in a menu. I've put in support/index.js for this:
Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from
// failing the test
return false
})
and it solves the main problem, except it doesn't wait for the page to load and loads in infinite loop, and then it looks for the item to find next and finally generates the error (all because the page wasn't loaded). How can I avoid this?
Note: Even if I put a cy.wait() of any period, the page does not load.
Thank you